home *** CD-ROM | disk | FTP | other *** search
/ Freaks Macintosh Archive / Freaks Macintosh Archive.bin / Freaks Macintosh Archives / HackAddict™ Magazine / HA 1-12 / HackAddict07.sit / HackAddict 7 ƒ / HackAddict™ 7.rsrc / TEXT_135.txt < prev    next >
Text File  |  1997-11-17  |  8KB  |  170 lines

  1.    Winnuke...A Macuser's Best 
  2.             Friend
  3.  
  4.  
  5.  
  6. ‚Ä¢  Introduction
  7. ‚Ä¢  Winnuke Explained
  8. ‚Ä¢  The Nuke Files
  9. ‚Ä¢  How-2
  10. ‚Ä¢  Closing & Miscellany
  11. ** Late Breaking News **
  12.  
  13.  
  14. Introduction
  15.  
  16.      In this technologically advanced world, we are plagued by one thing: Microsoft Windows. Don't you just hate Windows users? Don't you just wish there was something you could do to make them wish they had chosen the better operating system?  (The Mac OS!) Well, now there is a way. Read on.
  17.  
  18.      This Article should include the following files:
  19.  
  20. Nuke'Em         (Including the Program, Readme and HTML files)
  21. winnuke.c
  22. winnuke.pl
  23.  
  24.  
  25. Winnuke Explained
  26.  
  27.      A guy who calls himself "_eci" wrote a program called "Winnuke".  What this program does is it connects to a target machine on a network, and sends Out Of Band Data (OOB). This data can be anything (in the original program it was the text "bye"). This attack is called "Denial of Service (DoS)".  
  28.  
  29.      Windows supports OOB, but it doesn't know what to do with the data. For example, Windows 95 tries an exception handler, which fails, leaving the Windoze user with a blue screen. The 3 different OSes it targets (95, NT, 3.11) do different things. Anything from losing network connections to blank screens can happen, depending on how the system is set up.
  30.  
  31.      This attack can target any port that listens for data, but the popular one is the NetBIOS port (139). The NetBIOS is built into every PC. It performs the basic networking functions. The identd port (113) is also possible.
  32.  
  33.  
  34. The Nuke Files
  35.  
  36.   ‚Ä¢ Nuke 'Em (Mac)
  37.   ‚Ä¢ Winnuke.c (C/UNIX)
  38.   ‚Ä¢ Winnuke.pl (Perl/UNIX)
  39.  
  40.  
  41. Nuke 'Em
  42.  
  43.      In my opinion, Nuke 'Em is the best Mac Winnuke there is right now. (I am currently working on a spiffy version myself, but that's still in the works amongst countless other projects) Anyway, here is how to use Nuk 'Em.
  44.  
  45.      It's actually pretty easy. Once you start it, press Command-N or choose "Nuke 'Em..." from the File menu.
  46.  
  47. Once you've done that, you get this dialog box:
  48.  
  49.  
  50.  
  51.  
  52.  
  53.  
  54.  
  55.  
  56.  
  57.  
  58.  
  59.      Where it says "Host:", put the IP address. The IP address will either be a long number seperated by periods, like "209.170.50.76", a domain name like "microsoft.com" or a combo like "9062-irc.van.direct-96.ca". Nuke'Em should support all three, but some versions of Winnuke only support completely numerical ip addresses!  (That's important)
  60.  
  61.      A cool thing you can do with Nuke'Em is you can use it as a CGI.  That is, if you have a web server running off your Mac you can link it to your page. This will only work if it's running on a Mac.  The instructions for this are in the Nuke 'Em docs.
  62.  
  63.  
  64. Winnuke.c (UNIX)
  65.  
  66.      If you are cool, you'll have a shell account somewhere. (If you are really cool you'll have UNIX running on your own computer.)  Anyway, this is a better alternative to using your Mac because if you nuke somebody through telnet, it doesn't tie up your computer.  (You can even write a shell script to do it again and again and again, but I won't show you that...)
  67.  
  68.      Okay, using Fetch (My FTP prog of choice), upload "winnuke.c" to your directory. Now, telnet to your shell. Once you are in, type:
  69.  
  70. % cc -o nuke winnuke.c
  71.  
  72. % = The C-shell prompt.
  73. cc = The command to compile.
  74. -o =  Means "Name the program <name that follows"
  75. nuke = What we named our program.
  76. winnuke.c = What we compiled.
  77.  
  78.      NOTE: This program is only guaranteed to work on BSD, Linux and SunOS.
  79.  
  80. Now, to execute it, type: 
  81.  
  82. % ./nuke microsoft.com
  83.  
  84.      NOTE: "./nuke" is 1 word.  This is how you execute a custom program in UNIX. ANOTHER NOTE:  I'm actually not sure about the dot-slash thing. I only have experience with BSD, so I'm not sure if the Linux/SunOS command is different.
  85.  
  86.  
  87. Winnuke.pl (Also UNIX, but Perl this time)
  88.  
  89.      An alternative to C is Perl, which programming genius "_eci" also did. You can use the C version or the Perl version, it doesn't matter, but any Perl gurus might be interested to see how it was done and stuff.  Sooooooo, here's how to use it:
  90.  
  91.      First find out the path to Perl on your UNIX server. Then replace the:
  92.  
  93. #!/bin/perl
  94.  
  95. with whatever the path is.  
  96.  
  97. NOTE: Don't forget the "#!" before the path name.
  98.  
  99.      Upload "winnuke.pl" using Fetch. (I stress this...all the other FTP programs suck...)
  100.  
  101. Telnet to your shell.  Once in, type:
  102.  
  103. % mv winnuke.pl nuke
  104.  
  105. % chmod +x nuke
  106.  
  107.   and then
  108.  
  109. % ./nuke bill.gates.because.he.sucks.and.I.hate.him
  110.  
  111.      So what we've done is renamed our .pl file to something easier and quicker to type, and then changed it to an executable.  
  112.  
  113.      NOTE: Once again, I'm not sure about the rules concerning the execution of programs using "dot-slash" in types of UNIX other than BSD. You'll have to ask someone familiar to your brand.
  114.  
  115.  
  116. Winnuke How - 2
  117.  
  118. Ok, here are some cool ways to use Winnuke:
  119.  
  120.      At my school our computers are running on a Win95/NT combo. Since we have to share our hard drives for networking exercices, it's setup is each computer in the school has it's individual local IP address.  They are in the format 
  121.  
  122. "connection##.<group>"
  123.  
  124.      Each computer has a name like "cs12" or whatever. So, to target computer "cs12" in the computer lab, I would type:
  125.  
  126. "connection12.students" 
  127.  
  128. as the IP address. (Other ones to try are "teachers", "office", and "library") But students is the most fun and least dangerous.
  129.  
  130.      Another neat trick to do is to nuke "127.0.0.1", which is the IP address for your own machine. (Sometimes on some local-area networks this will work) Find out the individual IP addresses at your office/school and try it out.
  131.  
  132.      When using IRC, you may get the occasional asshole who comes into #mac-talk and starts pissing everyone off by saying stuff like "macs suck!  macs are shit!". Instead of immediatly flaming him back, type:
  133.  
  134. /whois macflamer
  135.  
  136.      And you'll get a bunch of useful info. What you need now is the numbers after the "@" and his nick. For example, we are looking for the string:
  137.  
  138. macflamer@connection321.6969.boring.isp.net
  139.  
  140.      We copy it, and paste it into Nuke'Em or Winnuke or whatever.  Wait a minute or two, then try again.
  141.  
  142.  
  143. Closing
  144.  
  145.    Well, this is the first article I've actually finished for Hackaddict.  Winnuke will not actually harm the computer you use it on, but it will sure screw it up for a while. A restart usually fixes the problem though.
  146.  
  147.      So anyway, have fun nuking your PC enemies, friends, bosses, teachers, etc.
  148.  
  149.  
  150. - Fuzebox
  151. fuzebox@cyberdude.com
  152.  
  153.  
  154. ** Now for the Late breaking news!!! **
  155.  
  156.      A close friend of mine, who goes by the handle of "Zulu" was busted at our school for completely screwing up our NT network server. However, he was unfairly judged and punished. The network admin had just spent an entire week reinstalling Windoze NT on the network server. He had just cleared Duke Nukem out of everyone's directories, when he came across Winnuke for Windows 95. Naturally, with angry teachers and principals breathing down his neck for a reason for the server being down, he grabbed this as a golden oppurtunity. After all, if the shoe fits...
  157.                 To make a long story short, my poor Windoze-using friend has his account suspended for 4 months. He is not allowed back in the computer labs for an entire month. He will not get any Internet access for the rest of the year. Finally, he has to do "community service", meaning go through and patch every copy of Windoze against winnuke, and then clean up their hard drives and install foolproof on each one. EACH COMPUTER IN THE SCHOOL!!!
  158.                 There are two lessons to be learned here:
  159.  
  160. Lesson #1:
  161.  
  162. Don't use Wndoze. Persuade your school not to use Windoze. It is nothing but trouble.
  163.  
  164. Lesson #2:
  165.  
  166. Don't get careless, don't get caught. My friend tried using conventional Windoze 95 techniques to hide his files. Problem was our admin is a Windoze guru. Our school has no UNIX guru (Or at least one who cares anyway) so I stayed safely out of trouble.  DON'T GET CAUGHT. 
  167.  
  168. Conclusion Number Two
  169.  
  170. So the genius sysadmins decided that the harmless Winnuke damaged their network server...From this little incident they have no doubt had their salaries raised a couple grand.  And now my friend has to suffer.  So even though Winnuke is harmless, those who are less intelligent will find it as a threat. So be careful.